home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / wtour / form1.tcl < prev    next >
Text File  |  1995-06-29  |  436b  |  18 lines

  1. #
  2. # a Form containing a mixture of objects
  3. #
  4. # Note how attachments have to be set to stop 
  5. # them piling up in the left top corner.
  6.  
  7. xmForm .form managed
  8.  
  9. xmLabel .form.lab managed \
  10.     -labelString "A label"
  11. xmPushButton .form.button managed \
  12.     -labelString "A button" \
  13.     -topAttachment attach_widget \
  14.     -topWidget .form.lab
  15. xmArrowButton .form.arrow managed \
  16.     -topAttachment attach_widget \
  17.     -topWidget .form.button
  18.